home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / ObjectTcl-1.1 / examples / Simple / A.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-30  |  209 b   |  19 lines

  1. #ifndef A_H
  2. #define A_H
  3.  
  4. // File A.H
  5.  
  6. class A
  7. {
  8. public:
  9.    A (A *next);
  10.    virtual ~A ();
  11.    virtual void doIt (void);
  12.    void doItNext (void);
  13.    void setNext (A *obj);
  14. private:
  15.    A *next;
  16. };
  17.  
  18. #endif // A_H
  19.